home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / WINDOWS / WSHEL202.ARJ / MAKEFILE.MAK < prev    next >
Text File  |  1992-05-26  |  859b  |  28 lines

  1.  
  2. UTIL_D   = c:
  3. MSC_PATH    = $(UTIL_D)\compile\msc\bin
  4. SDK_PATH    = $(UTIL_D)\windev
  5. LINK_PATH    = $(UTIL_D)\compile\msc\bin
  6.  
  7. #CFLAGS = -c -AL -Gsw -Od -Zipe -W2    # - symbolic info, no optimize
  8. CFLAGS = -c -AL -G2sw -Os -Zpe -W2     #  ship version
  9.  
  10. # ---------------------------------------------------------------------
  11. #              Generalized Transformation Rules
  12. # ---------------------------------------------------------------------
  13. .c.obj   :
  14.      :$(MSC_PATH)\cl  $(CFLAGS) $*.c
  15.  
  16. .obj.ws :
  17.      :$(LINK_PATH)\link @$*.lnk
  18.      :$(SDK_PATH)\rc -t $*.res $*.ws
  19.  
  20. # ---------------------------------------------------------------------
  21. #              Source file dependencies
  22. # ---------------------------------------------------------------------
  23.  
  24. generic.obj: generic.c generic.h
  25. generic.ws: generic.obj generic.res
  26.  
  27.  
  28.